home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / a_utils / _archvrs / unix / freeze-2.lha / freeze / config.msc < prev    next >
Text File  |  1993-02-22  |  2KB  |  64 lines

  1. /* This is a configuration file prototype, copy it to config.h and      */
  2. /* "#define" appropriate macros if you have problems with "configure".  */
  3.  
  4. /* define as "int" or "void" */
  5. #define RETSIGTYPE void
  6.  
  7. /* define if your computer/system allows unaligned word access          */
  8. #define ALLOW_MISALIGN
  9.  
  10. /* define if sizeof(int) == 2                                           */
  11. #define INT_16_BITS
  12.  
  13. /* define if your computer cannot handle data items of more than 64K    */
  14. #define SEGMENTED
  15.  
  16. /* define if filenames can be of more than 14 chars                     */
  17. #undef HAVE_LONG_FILE_NAMES
  18.  
  19. /* define no more than one of, according to your standard #include's    */
  20. /* if you have <dirent.h>                                               */
  21. #undef DIRENT
  22. /* if you have <sys/ndir.h>                                             */
  23. #undef SYSNDIR
  24. /* if you have <sys/dir.h>                                              */
  25. #undef SYSDIR
  26.  
  27. /* define if you have <sys/stdtypes.h>                                  */
  28. #undef HAVE_SYS_STDTYPES_H
  29.  
  30. /* define if you have "rindex" and "setlinebuf" correspondingly         */
  31. #undef HAVE_RINDEX
  32. #undef HAVE_SETLINEBUF
  33.  
  34. /* define no more than one of, according to your standard #include's    */
  35. /* if you have <utime.h>                                                */
  36. #define UTIME
  37. /* if you have <sys/utime.h>                                            */
  38. #undef SYSUTIME
  39. /* if you have "struct timeval" in <sys/time.h>                         */
  40. #undef SYSTIME
  41.  
  42. /* define if you want to have freeze compatible with vers. 1.0          */
  43. #undef COMPAT
  44.  
  45. /* define if your system has multibyte NEWLINE (as in MS-DOS) and       */
  46. /* you want to do text conversion by default                            */
  47. #undef TEXT_DEFAULT
  48.  
  49. /* define if you want to build freeze in small model  (64K data)        */
  50. /* (segmented architectures only)                                       */
  51. #undef TINY
  52.  
  53. /* define if you want to decrease the amount of memory but without      */
  54. /* 64K restriction (no sense for 16-bit machines)                       */
  55. #undef SMALL
  56.  
  57. /* define to increase the compression speed by about 10% at the cost    */
  58. /* of some tenths of % compression rate                                 */
  59. #undef FASTHASH
  60.  
  61. /* default Huffman values, define if you don't like the default        */
  62. /* 0,0,1,2,6,19,34,0. These below are reasonably good also.            */
  63. /* #define HUFVALUES 0,1,1,1,4,10,27,18                                */
  64.